home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / cc / test.c < prev    next >
Text File  |  1994-03-01  |  130b  |  10 lines

  1. static const char STR_NULL[] = "";
  2.  
  3. static char *astring = (char *)STR_NULL;
  4.  
  5. int test()
  6. {
  7.   return astring==STR_NULL ? 1 : 0;
  8. }
  9.  
  10.